/* Navbar */

@media screen and (max-width: 823px) {
    #nav-links {
        position: absolute;
        line-height: 1.5;
        left: 365px;
        /* top: -80%; // comment */
        right: 0;
        width: 1420%;
        background-color: #ffffff !important;
        padding: 10px;
        /* margin-left: -477%; //  comment */
        /* height: 20px; */
    }

    a {
        line-height: normal;
    }

    .t1{
        margin-top: 5% !important;
    }

    .t2{
        margin-top: 0.5% !important;
    }

    .t3{
        margin-top: 0.5% !important;
    }

    .t4{
        display: block !important;
        margin-top: 0.5% !important;
        padding-bottom: 1%;
    }

    .bi-x {
        display: none;
        visibility: visible;
        position: absolute;
        top: 0%;
        /* margin-left: 50px; */
        left: 375px;
        font-size: 36px !important;
        /* margin-left: 50px; // comment */
    }
    

    .nav {
        display: block !important;
        margin: 10px 60px !important;
        color: navy !important;
        opacity: 100% !important;
        font-size: 40px !important;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        padding-top: 20px;
        margin-top: 20%;
    }

    .bi-list {
        display: block !important;
        font-weight: 900px !important;
    }

    .bi-x {
        display: none;
        font-weight: 900px !important;
        font-size: 70px !important;
    }

    .t1{
        margin-top: 2% !important;
    }

    .nav-links{
        margin: 20px !important;
    }
}

.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: black;
    margin-top: 10px;
  }
  
  /* plus sign */
  .sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sign svg {
    width: 17px;
  }
  
  .sign svg path {
    fill: white;
  }
  /* text */
  .text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: .3s;
  }
  /* hover effect on button width */
  .Btn:hover {
    width: 125px;
    border-radius: 40px;
    transition-duration: .3s;
  }
  
  .Btn:hover .sign {
    width: 30%;
    transition-duration: .3s;
    padding-left: 20px;
  }
  /* hover effect button's text */
  .Btn:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
  }
  /* button click effect*/
  .Btn:active {
    transform: translate(2px ,2px);
  }